deps: Update Parcel dependencies to version 2.13.2 across multiple co…#1346
Open
xiangnuans wants to merge 1 commit into
Open
deps: Update Parcel dependencies to version 2.13.2 across multiple co…#1346xiangnuans wants to merge 1 commit into
xiangnuans wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Details
Problem
Tailwind v4 (specifically via its dependency
jiti) and modern Node.js ecosystems have moved towards using thenode:prefix for built-in module imports (e.g.,require("node:module")).The current Parcel version used in Plasmo (
2.9.3) does not support thenode:prefix for CommonJS dependencies, leading to the following build error:Could not resolve module "node:module"This issue has been a major blocker for users trying to adopt Tailwind v4 (#1188).
Solution
This PR upgrades the internal Parcel dependency stack from
2.9.3to2.13.2+.Key changes:
@parcel/*packages to versions matchingparcel@2.13.2.@parcel/graph@3.3.2,@parcel/hash@2.9.3).@parcel/watcherto2.5.6.Verification:
pnpm installacross the workspace to ensure lockfile consistency.pnpm build:cli.node:prefix resolution (ref: parcel-bundler/parcel#9244).This is a structural fix at the bundler level rather than a temporary workaround like patching
node_modules.Related Issues
Code of Conduct